-
Notifications
You must be signed in to change notification settings - Fork 0
Next Release #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next Release #14
Conversation
* update branch in sub * add mdt to solution * update branch in sub * add mdt to solution * prototype texture verifier * improve error reporting * finish new game init reporting * start GameManagers * update subs * update sub * move to gamemanager arch * first support for gui dialogs * remove valuelistdict to xml objects to avoid boxing * fix gameobject land terrain model mapping uses only the first ocurrance * update deps and module * minor changes * fix initialization * correct file not found handling * use spans for repositories * support custom xml parser action * reduce allocations in repository * update valuestringbuilder usages * fix some files are not found. * extract constants * implement parsing commandbar components (except colors) * move code * move code * move code * remove submodule * remove module * update all deps and make run again * read corrupt string throws BinaryCorruptedExcpetion * update to .net9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 311 out of 317 changed files in this pull request and generated 1 comment.
Files not reviewed (6)
- .gitmodules: Language not supported
- Directory.Build.props: Language not supported
- ModVerify.sln: Language not supported
- PetroglyphTools: Language not supported
- src/Directory.Build.props: Language not supported
- src/ModVerify.CliApp/ModVerify.CliApp.csproj: Language not supported
Comments suppressed due to low confidence (2)
src/ModVerify.CliApp/ModSelectors/ModSelectorBase.cs:70
- The removal of the .Select(x => x.Mod) transformation changes the type of objects processed. Please verify that this change was intentional and that it correctly handles the objects returned by the traverser.
return traverser.Traverse(mod) .OfType<IPhysicalMod>().Select(x => x.Directory.FullName)
src/ModVerify.CliApp/GameFinder/GameFinderService.cs:100
- [nitpick] Changing the log level from Trace to Information may result in more verbose logs in production. Confirm that this update to the logging level aligns with your logging strategy.
_logger?.LogInformation($"Found game installation: {result.GameIdentity} at {result.GameLocation.FullName}")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 311 out of 317 changed files in this pull request and generated 1 comment.
Files not reviewed (6)
- .gitmodules: Language not supported
- Directory.Build.props: Language not supported
- ModVerify.sln: Language not supported
- PetroglyphTools: Language not supported
- src/Directory.Build.props: Language not supported
- src/ModVerify.CliApp/ModVerify.CliApp.csproj: Language not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 311 out of 317 changed files in this pull request and generated no comments.
Files not reviewed (6)
- .gitmodules: Language not supported
- Directory.Build.props: Language not supported
- ModVerify.sln: Language not supported
- PetroglyphTools: Language not supported
- src/Directory.Build.props: Language not supported
- src/ModVerify.CliApp/ModVerify.CliApp.csproj: Language not supported
Comments suppressed due to low confidence (1)
src/ModVerify.CliApp/ModSelectors/SettingsBasedModSelector.cs:37
- The updated logic removes the previous null or empty check before returning the mod name. To maintain robust error handling, consider reintroducing validation to ensure that the returned name is neither null nor empty.
return mod ?? gameLocations.GamePath;
No description provided.